-
-
Notifications
You must be signed in to change notification settings - Fork 835
feat: add blas/base/dspr
#2794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add blas/base/dspr
#2794
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks, @aman-095.
One small comment: I updated the tests to use exact equality, rather than approximate equality, as this API only involves simple addition and multiplication, resulting in whole numbers. Should results include decimal values, then approximate equality is more appropriate.
PR-URL: stdlib-js#2794 Ref: stdlib-js#2039 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
Progresses #2039.
Description
This RFC proposes to add a routine to the symmetric rank 1 operation
A = α*x*x^T + A
whereα
is a scalar,x
is anN
element vector, andA
is anN
byN
symmetric matrix supplied in packed form as defined in BLAS Level 2 routines. Specifically adding@stdlib/blas/base/dspr
is proposed.Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers